home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
17 Bit Software 3: The Continuation
/
17-Bit_The_Continuation_Disc.iso
/
amigan
/
amigan 10
/
menus
/
process.c
< prev
next >
Wrap
Text File
|
1994-01-27
|
329b
|
17 lines
/* main processing routine */
Process_Item(M0,I0,S0)
register int M0, I0, S0; /* menu control flags */
{
switch (M0)
{
case -1 : /* Close up the shop */
printf("Stub Close up Shop\n");
break;
default : /* easy way out */
printf("Stub for %d:%d:%d\n",M0,I0,S0);
break;
};
}